.Products{
    background-color: #296132;
    width: max-content;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: solid 1px black;
    border-radius: 5px 5px 0px 0px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.75);
}
.Products > div > span{
    display: block;
    text-align: center;
    font-size: 17pt;
    font-weight: bold;
    padding: 3px 10px 3px 10px;
    font-family:Open_Sans;
}
.Products > div > div > img {
    filter: invert(29%) sepia(14%) saturate(1875%) hue-rotate(78deg) brightness(98%) contrast(88%);
    height: 65px;
}
.Products > div > div > label{
    display: block;
    color: #b3b3b3;
    border-top: solid 2px #1b4121;
    padding-top: 5px;
    margin-top: 2px;
    font-weight: bold;
    font-size: 13pt;
    font-family:Montserrat;
}
.Products > div:nth-child(2){
    display: flex;
    justify-content: center; /*previously space between*/
    text-align: center;
    background-color: #262626f2;
    padding: 31px;
    gap: 50px;
}
.Products > div:nth-child(2) > div:hover{
    cursor: pointer;
}
.Products > div:nth-child(2) > div:hover > img{
   filter: invert(29%) sepia(14%) saturate(1875%) hue-rotate(78deg) brightness(127%) contrast(88%);
    cursor: pointer;
}
.Products > div:nth-child(2) > div:hover > label{
    text-decoration:underline;
    border-top:solid 2px #3c7336;
    cursor: pointer;
}
.Products > div:nth-child(3){
    display: flex;
    justify-content: center; /*previously space between*/
    text-align: center;
    background-color: #262626f2;
    padding: 10px 0px;
    gap: 50px;
}
/* Custom Select */
.Products > div:nth-child(3) > div{
    width:100%;
}
.Products select{
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 19px;
    background-color: #b0bfad;
    border-color: #3e533a;
    border-radius: 5px;
}
.Products > div:nth-child(4){
    display: flex;
    justify-content: center; /*previously space between*/
    text-align: center;
    background-color: #262626f2;
    padding-bottom:10px;
    gap: 50px;
}
.Products > div:nth-child(4) > a{
    color: white;
    border: outset 2px #296132;
    display: block;
    padding:0px 10px 0px 10px; 
    background-color: #296132;
    text-align: center;
    font-size: 16pt;
    font-family: Open_Sans;
    text-wrap: nowrap;
    border-radius: 3px;
}
.Products > div:nth-child(4) > a:hover{
    background-color: #468250;
    box-shadow: inset 0px 0px 14px -5px black;
    cursor:pointer;
}
.Products_Container_Fade_In{
	-webkit-animation: Products_Container_Fade_In 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: Products_Container_Fade_In 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@-webkit-keyframes Products_Container_Fade_In{
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.Products_Container_Fade_Out{
	-webkit-animation: Products_Container_Fade_Out 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: Products_Container_Fade_Out 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes Products_Container_Fade_Out{
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}